Skip to content

chore(camel-test-infra-iggy): upgrade iggy.container to 0.8.0#23835

Merged
davsclaus merged 2 commits into
mainfrom
automated/upgrade-iggy-container-0.8.0
Jul 8, 2026
Merged

chore(camel-test-infra-iggy): upgrade iggy.container to 0.8.0#23835
davsclaus merged 2 commits into
mainfrom
automated/upgrade-iggy-container-0.8.0

Conversation

@github-actions

@github-actions github-actions Bot commented Jun 8, 2026

Copy link
Copy Markdown
Contributor

This PR updates the iggy.container container image to version 0.8.0.

Update Details

  • Property: iggy.container
  • Image: mirror.gcr.io/apache/iggy
  • File: /home/runner/work/camel/camel/test-infra/camel-test-infra-iggy/src/main/resources/org/apache/camel/test/infra/iggy/services/container.properties
  • Old version: 0.7.0
  • New version: 0.8.0

Verification

Please verify:

  • Container image version is compatible with existing tests
  • No breaking changes in the updated version
  • Tests pass with the new version

Run the following to rebuild the test infra:

mvn clean verify -pl camel-test-infra-iggy

Then test the impacted components.


This PR was automatically created by the Container Version Upgrade workflow.

Update iggy.container from 0.7.0 to 0.8.0
@github-actions github-actions Bot added dependencies Pull requests that update a dependency file container-images For check container upgrades automated For Check Container upgrade labels Jun 8, 2026

@apupier apupier left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

test failing fo rme locally:

2026-06-08T09:02:12.762392252Z main ERROR Could not start container
java.lang.IllegalStateException: Wait strategy failed. Container exited with code 101
	at org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:520)
	at org.testcontainers.containers.GenericContainer.lambda$doStart$0(GenericContainer.java:341)
	at org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:81)
	at org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:331)
	at org.testcontainers.containers.GenericContainer.start(GenericContainer.java:317)
	at org.apache.camel.test.infra.iggy.services.IggyLocalContainerInfraService.initialize(IggyLocalContainerInfraService.java:57)
=== io_uring Permission Denied ===

The io_uring runtime requires specific syscalls that are blocked by default
in containerized environments (Docker, Podman, etc.).

To resolve this issue:

  1. Docker Compose (add to service):
     security_opt:
       - seccomp:unconfined

  2. Docker run:
     docker run --security-opt seccomp=unconfined ...

  3. Custom seccomp profile (more secure):
     Create a profile allowing io_uring_setup, io_uring_enter,
     and io_uring_register syscalls.

  4. Kubernetes (add to pod spec):
     securityContext:
       seccompProfile:
         type: Unconfined

  Need help? Join our Discord: https://discord.gg/apache-iggy


thread 'main' (1) panicked at core/server/src/main.rs:121:13:
Cannot create runtime: Permission denied (os error 13)
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

@oscerd oscerd left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the bump. Flagging a blocker that @apupier already documented: the iggy 0.8.0 image fails to start under the default container seccomp profile — its new io_uring-based runtime hits denied syscalls and the server panics (Cannot create runtime: Permission denied (os error 13), exit 101). So this isn't an arch-availability issue (mirror.gcr.io/apache/iggy:0.8.0 does exist); it's a runtime regression.

The fix belongs in the test-infra service (IggyLocalContainerInfraService) — e.g. running the container with seccomp=unconfined (or allow-listing the io_uring_* syscalls) — rather than in the version string alone. Could you fold that in here, or split the infra change out first? The version-bump diff itself is clean.


Reviewed with Claude Code on behalf of Andrea Cosentino. This review was generated by an AI agent and may contain inaccuracies; please verify all suggestions before applying.

@apupier

apupier commented Jun 29, 2026

Copy link
Copy Markdown
Contributor

The fix belongs in the test-infra service (IggyLocalContainerInfraService) — e.g. running the container with seccomp=unconfined (or allow-listing the io_uring_* syscalls) — rather than in the version string alone. Could you fold that in here, or split the infra change out first? The version-bump diff itself is clean.

the parameter is already available:
468705c

and in fact the test are disabled on Ci due to this problem already of not available io_uring: 65fcdf4

I remember that I had the same issue.

@Croway it was working for you locally, could you try this new version locally please?

@Croway

Croway commented Jun 30, 2026

Copy link
Copy Markdown
Contributor

Thanks for the ping @apupier , the tests are successful with 0.8.0

@github-actions

github-actions Bot commented Jul 8, 2026

Copy link
Copy Markdown
Contributor Author

🌟 Thank you for your contribution to the Apache Camel project! 🌟
🤖 CI automation will test this PR automatically.

🐫 Apache Camel Committers, please review the following items:

  • First-time contributors require MANUAL approval for the GitHub Actions to run
  • You can use the command /component-test (camel-)component-name1 (camel-)component-name2.. to request a test from the test bot although they are normally detected and executed by CI.
  • You can label PRs using skip-tests and test-dependents to fine-tune the checks executed by this PR.
  • Build and test logs are available in the summary page. Only Apache Camel committers have access to the summary.

⚠️ Be careful when sharing logs. Review their contents before sharing them publicly.

@github-actions

github-actions Bot commented Jul 8, 2026

Copy link
Copy Markdown
Contributor Author

🧪 CI tested the following changed modules:

  • catalog/camel-catalog
  • test-infra/camel-test-infra-all
  • test-infra/camel-test-infra-iggy

🔬 Scalpel shadow comparison — Scalpel: 12 tested, 28 compile-only — current: 11 all tested

Maveniverse Scalpel detected 40 affected modules (current approach: 11).

⚠️ Modules only in Scalpel (29)
  • apache-camel
  • camel-allcomponents
  • camel-catalog
  • camel-catalog-console
  • camel-catalog-lucene
  • camel-catalog-maven
  • camel-catalog-suggest
  • camel-componentdsl
  • camel-csimple-maven-plugin
  • camel-endpointdsl
  • camel-endpointdsl-support
  • camel-itest
  • camel-jbang-core
  • camel-jbang-it
  • camel-jbang-main
  • camel-jbang-plugin-edit
  • camel-jbang-plugin-generate
  • camel-jbang-plugin-kubernetes
  • camel-jbang-plugin-test
  • camel-kamelet-main
  • camel-launcher
  • camel-report-maven-plugin
  • camel-route-parser
  • camel-yaml-dsl
  • camel-yaml-dsl-deserializers
  • camel-yaml-dsl-maven-plugin
  • coverage
  • docs
  • dummy-component

Skip-tests mode would test 12 modules (3 direct + 9 downstream), skip tests for 28 (generated code, meta-modules)

Modules Scalpel would test (12)
  • camel-catalog
  • camel-iggy
  • camel-jbang-mcp
  • camel-jbang-plugin-mcp
  • camel-jbang-plugin-route-parser
  • camel-jbang-plugin-tui
  • camel-jbang-plugin-validate
  • camel-launcher-container
  • camel-test-infra-all
  • camel-test-infra-iggy
  • camel-yaml-dsl-validator
  • camel-yaml-dsl-validator-maven-plugin
Modules with tests skipped (28)
  • apache-camel
  • camel-allcomponents
  • camel-catalog-console
  • camel-catalog-lucene
  • camel-catalog-maven
  • camel-catalog-suggest
  • camel-componentdsl
  • camel-csimple-maven-plugin
  • camel-endpointdsl
  • camel-endpointdsl-support
  • camel-itest
  • camel-jbang-core
  • camel-jbang-it
  • camel-jbang-main
  • camel-jbang-plugin-edit
  • camel-jbang-plugin-generate
  • camel-jbang-plugin-kubernetes
  • camel-jbang-plugin-test
  • camel-kamelet-main
  • camel-launcher
  • camel-report-maven-plugin
  • camel-route-parser
  • camel-yaml-dsl
  • camel-yaml-dsl-deserializers
  • camel-yaml-dsl-maven-plugin
  • coverage
  • docs
  • dummy-component

ℹ️ Shadow mode — Scalpel observes but does not affect test execution. Learn more

All tested modules (40 modules)
  • Camel :: All Components Sync point
  • Camel :: Assembly
  • Camel :: Catalog :: CSimple Maven Plugin (deprecated)
  • Camel :: Catalog :: Camel Catalog
  • Camel :: Catalog :: Camel Report Maven Plugin
  • Camel :: Catalog :: Camel Route Parser
  • Camel :: Catalog :: Console
  • Camel :: Catalog :: Dummy Component
  • Camel :: Catalog :: Lucene (deprecated)
  • Camel :: Catalog :: Maven
  • Camel :: Catalog :: Suggest
  • Camel :: Component DSL
  • Camel :: Coverage
  • Camel :: Docs
  • Camel :: Endpoint DSL
  • Camel :: Endpoint DSL :: Support
  • Camel :: Iggy
  • Camel :: Integration Tests
  • Camel :: JBang :: Core
  • Camel :: JBang :: Integration tests
  • Camel :: JBang :: MCP
  • Camel :: JBang :: Main
  • Camel :: JBang :: Plugin :: Edit
  • Camel :: JBang :: Plugin :: Generate
  • Camel :: JBang :: Plugin :: Kubernetes
  • Camel :: JBang :: Plugin :: MCP
  • Camel :: JBang :: Plugin :: Route Parser
  • Camel :: JBang :: Plugin :: TUI
  • Camel :: JBang :: Plugin :: Testing
  • Camel :: JBang :: Plugin :: Validate
  • Camel :: Kamelet Main
  • Camel :: Launcher
  • Camel :: Launcher :: Container
  • Camel :: Test Infra :: All test services
  • Camel :: Test Infra :: Iggy
  • Camel :: YAML DSL
  • Camel :: YAML DSL :: Deserializers
  • Camel :: YAML DSL :: Maven Plugins
  • Camel :: YAML DSL :: Validator
  • Camel :: YAML DSL :: Validator Maven Plugin

⚙️ View full build and test results

@oscerd oscerd left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. Straightforward test-infra container bump apache/iggy:0.7.00.8.0 (from the GCR mirror, per project guidance); the generated metadata.json files are updated consistently, CI is green, and it already carries approvals from @davsclaus and @Croway. Clearing my earlier changes-requested.

Reviewed with Claude Code on behalf of Andrea Cosentino. This review was generated by an AI agent and may contain inaccuracies; please verify all suggestions before applying.

@davsclaus
davsclaus merged commit e1d0ca1 into main Jul 8, 2026
6 checks passed
@github-actions
github-actions Bot deleted the automated/upgrade-iggy-container-0.8.0 branch July 8, 2026 13:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

automated For Check Container upgrade catalog container-images For check container upgrades dependencies Pull requests that update a dependency file test-infra

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants